All Questions
Tagged with python-3.xbeautifulsoup
82 questions
2votes
1answer
104views
Monitoring webpages to be notified
I have been writing a monitoring script where I check for whenever there is changes on a webpage. When a change has happend I want to be notified by printing out that there is a difference. I have ...
2votes
1answer
109views
Compare between two dictionaries
Hello beautiful people! I have currently worked on a small script that I would of course continue to work with whenever I get a good feedback from the best code reviewer in here <3 - I have worked ...
2votes
0answers
165views
Web scraping articles using asyncio
I use asyncio to speed up web scraping. I collect only title, author, tags, datetime, total comments from list view from specific website. Also, i collect these from all pages. I would like to improve ...
3votes
1answer
80views
Refactor Web Scraper
I wrote a simple Zoopla real estate scraper for just practicing what I learned so far in Python, Requests, BeautifulSoup and overall web scraping fundamentals. By looking at my code I feel like there ...
0votes
1answer
60views
Content aggregator using bs4 and requests
Standard code review, tell me what's good, what's bad, and how to improve. Critical suggestions welcomed. This is a content aggregator using bs4 and requests. I did not use any tutorials or help. <...
5votes
1answer
59views
Scraper for basketball rosters
I am very new to Python and I am trying to learn through personnal projects and today I needed to collect a lot of baksetball player names and decided this was a good time to learn and practice. The ...
4votes
1answer
122views
MultiLingual Online Translator
So i made a program, which allows you to translate from one language to another using the command prompt. I would like advice about the design, optimizations, and the tips and tricks to avoid ...
3votes
1answer
80views
Class or not in Page Scraper (Python BeautifulSoup)
I am trying to figure out whether the below is better than just having a raw script or just a script with functions. ...
3votes
2answers
121views
7votes
1answer
775views
1vote
1answer
902views
Unofficial API for 1001tracklists.com
I wanted to build a scaping-API for the website 1001tracklists.com by writing classes for Tracklist and Track objects and some helpful functions: Here's the full code (GitHub): ...
2votes
1answer
2kviews
Better way to extract html table to dictionary using beautifulsoup in python
I am scraping HTML pages. Part of the page has a table which has acts and sections of those acts mentioned in table format. For some other project I need to convert them to Dictionary. The key values ...
3votes
2answers
716views
First Python Web Scraping Project with BeautifulSoup
This is my first Web Scraping project in which I am retrieving the current stock information from here. This program works as expected, but I would certainly think someone with more experience with ...
2votes
1answer
284views
A Text-Based Browser using Requests, Beautiful Soup, Sys, OS, and colorama
I have worked on this for quite a long while, and this is my 3rd attempt after completely demolishing 3 other 200 liners, and i really need ideas on how to make my code add more functionality or ...
5votes
2answers
1kviews
OOP Web-scraper w/ Python and BeautifulSoup
This is my first major web scraping program in python. My code works nonetheless, I'm just not sure if it's the best OOP design. My code is below: ...